home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / at / README < prev    next >
Text File  |  2009-09-15  |  2KB  |  66 lines

  1. This is version of 3.1.x of the at/atrun pair for running commands at a
  2. specified time.  To install, do a
  3.  
  4. $ ./configure
  5.  
  6. You might want to change the default maximum load at which batch
  7. jobs are still started by specifying --with-loadavg_mx=... as
  8. argument to configure.  The default is 0.8, so that, normally, no
  9. batch job will be started when there's still activity going on.
  10. For an SMP system, you will want to increase this.
  11.  
  12. Then, do
  13.  
  14. $ make
  15.  
  16. and, as root,
  17.  
  18. # make install
  19.  
  20. There are two ways of running at jobs.
  21.  
  22. The new one is to start up an atd daemon at boot time.
  23.  
  24. The old one is to put
  25.  
  26. * * * * 0,5,10,15,20,25,30,35,40,45,50,55 /usr/lib/atrun
  27.  
  28. into root's crontab file (or wherever you put the atrun binary;
  29. don't forget to start up cron.)
  30.  
  31. (To place the line into crontab, do a
  32.  
  33. # crontab -l > cront
  34. # vi cront
  35.  
  36. [or whatever your favourite editor is.  Add the line above if it is
  37. not already in there.]
  38.  
  39. # crontab -r cront
  40. )
  41.  
  42. The new way has advantages on portable systems (where it doesn't wake up
  43. the disk every five minutes or so), and it also does immediate execution
  44. of batch jobs.  The old way is compatible with the setup that's being
  45. shipped with most Linux distributions, and doesn't have an extra process
  46. hanging around all the time.
  47.  
  48. If you happen to have an older version of at around, make sure to delete
  49. it (it might lurk in /bin, for example).
  50.  
  51. Bug reports to:
  52.     http://bugs.debian.org/ (Debian bug tracking system)
  53.     or
  54.     at@packages.debian.org (Debian at package maintainers)
  55.  
  56. If at all possible, I'd appreciate you telling me which version you
  57. found a bug in; run at -V to find out which one.
  58.  
  59. If you try to use at(1) on a system which does not support setreuid(2),
  60. i.e. if you get an error whch looks vaguely like
  61.  
  62. undefined symbol _setreuid referenced from text segment
  63.  
  64. DO NOT try to install at on your system by removing all that strange
  65. PRIV stuff.  You will install a rather glaring security hole that way.
  66.